This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
RE: Compose a new document and passing a value to it. ~Maria Prerevernivu 28.Jan.04 08:51 AM a Web browser Domino Designer All ReleasesAll Platforms
try this,it is not tested butI think it will work
Dim session As NotesSession
Set session = New NotesSession
Dim db As NotesDatabase
Set db = Session.CurrentDatabase
Dim NewDOc As notesdocument
Set NewDOc =db.createdocument
NewDOc.form="Your Form Name"
NewDOc.Choices="1" 'or whatever the value
Call NewDOc.Save(True,False)